home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2004 September
/
CHIP_CD_2004-09.iso
/
macos
/
pack1
/
files
/
MaxBulkMailer.sit
/
MaxBulk Mailer
/
Examples
/
Applescript
/
AppleScript How-To
< prev
next >
Wrap
Text File
|
2003-02-24
|
3KB
|
94 lines
MaxBulk Mailer⌐ [AppleScript]
[M A X P R O G] - February 2003 - Copyright ⌐ 2000 - 2003
Please read the enclosed License Agreement for further legal information.
MAX Programming, LLC - All rights reserved worldwide.
E-mail: support@maxprog.com - Web: http://www.maxprog.com
Setting message subject
Set message subject. (Required)
Ex: SetSubject "Where is Kitty?"
Setting message contents
Set message contents. (Required)
Ex: SetMessage "You will find attached a picture of Kitty." -- Required
Setting message format
Set message format from: (Optional)
[0] Plain Text (default)
[1] Text/HTML
[2] HTML
[3] Styled Text
Ex: SetFormat 3
Setting message priority
Set message priority from: (Optional)
[0 ] Highest
[1] High
[2] Normal (default)
[3] Low
[4] Lowest
Ex: SetPriority 0
Adding attachments
Add an attachment to the message. (Optional)
- Absolute file path or relative to current directory.
- Add a heading ":" to the path to force MaxBulk to consider it as Relative to current directory.
Ex: AddAttachment ":Examples:Applescript:samplepicture.jpg"
Setting attachment encoding
Set attachment encoding. (Optional)
[0] Base64 (default)
[1] UUEncode
[2] MacBinary
[3] BinHex
[4] AppleSingle
[5] AppleDouble
Ex: SetFileEncoding 5
Selecting a list
Select a list from the pull-down list menu by name. (Optional)
- If list is not found no list is selected.
- If an empty name is passed, "", all recipients are removed from current list.
Ex: SelectList "[TEST] Maxprog - Single"
Adding recipients
Add recipients to the list (Optional)
Following forms are allowed:
AddRecipient "John Smith <john@maxprog.com>,cherryl@maxprog.com"
AddRecipient john@maxprog.com,cherryl@maxprog.com
AddRecipient "Richard;Wagner;MaxProg;richard@maxprog.com"
Removing recipients
Remove recipients from the list (Optional)
Following forms are allowed:
DeleteRecipient "John Smith <john@maxprog.com>,cherryl@maxprog.com"
DeleteRecipient john@maxprog.com,cherryl@maxprog.com
DeleteRecipient "Richard;Wagner;MaxProg;richard@maxprog.com"
Selecting an account
Select an account from the pull-down account menu by name. (Required)
- If an empty name is passed, "", account is reseted.
Ex: SelectAccount "Maxprog"
Sending message
SelectSend message with or without asking for a return receipt (Optional)
[0] No Return Receipt (Default)
[1] Ask for a Return Receipt
Following forms are allowed:
SendMail
SendMail 0
SendMail 1
--
Last Updated on February 25th, 2003
⌐ Max Programming, LLC